home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / VOCABS.HLP < prev    next >
Text File  |  1988-01-11  |  2KB  |  43 lines

  1. \ VOCABS.HLP    ONLY ALSO vocabulary operators.
  2.  
  3.  
  4. ROOT            ( --- )
  5.         The root vocabulary that is always available in the
  6.         vocabulary list.
  7.  
  8. ALSO            vocabulary stack -> ( voc1 --- voc1 voc1 | current = ? )
  9.         Duplicate the the top of the CONTEXT vocabulary stack.
  10.  
  11. ONLY            vocabulary stack -> ( root .. voc1 -- root | current = ? )
  12.         Clean off the vocabulary stack, leaving only ROOT.
  13.  
  14. SEAL            vocabulary stack -> ( root .. voc1 -- voc1 | current = ? )
  15.         Remove all vocabularies from the CONTEXT vocabulary stack
  16.         leaving only voc1 as the CONTEXT vocabulary. This prevents
  17.         access to any other vocabularies unless an escape mechanism is
  18.         included in the voc1 vocabulary.
  19.  
  20. PREVIOUS        vocabulary stack -> ( voc1 voc2 -- voc1 | current = ? )
  21.         Pop one vocabulary off the CONTEXT vocabulary stack.
  22.  
  23. FORTH           vocabulary stack -> ( voc1 voc2 -- voc1 forth | current = ? )
  24.         A pseudonym FORTH in the ROOT vocabulary, to assure FORTH
  25.         will always be available.
  26.  
  27. DEFINITIONS     vocabulary stack -> ( voc1 -- voc1 | current = voc1 )
  28.         Sets the current vocabulary to the same vocabulary as the
  29.         top entry of the CONTEXT vocabulary stack.
  30.  
  31. ORDER           ( -- )
  32.         Displays the contents of the CONTEXT vocabulary stack.
  33.  
  34. VOCS            ( -- )
  35.         Displays a list of all vocabularies in the dictionary.
  36.  
  37. HIDDEN          vocabulary stack -> ( voc1 voc2 -- hidden voc2 | current = ? )
  38.         The HIDDEN vocabulary, sets CONTEXT to HIDDEN when executed.
  39.  
  40. BUG             vocabulary stack -> ( voc1 voc2 -- bug voc2 | current = ? )
  41.         The BUG vocabulary, sets CONTEXT to BUG when executed.
  42.  
  43.